home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 11 / Mac Magazin and MacEasy Magazine CD - Issue 11.iso / Sharewarebibliothek / Entwickler / appe Windows 2.0 / AppeWin for SC7 / sample win.h < prev   
Text File  |  1995-06-11  |  982b  |  29 lines

  1. // File "sample win.h" - 
  2.  
  3. #ifndef ____SAMPLE_WIN_HEADER____
  4. #define ____SAMPLE_WIN_HEADER____
  5.  
  6. #ifndef __DRAG__
  7. #include <Drag.h>
  8. #endif  __DRAG__
  9.  
  10. // * ****************************************************************************** *
  11. // * ****************************************************************************** *
  12.  
  13. pascal unsigned char GetHiliteMode(void) = { 0x1EB8, 0x0938 }; /* MOVE.B 0x0938,(A7) */
  14. pascal void SetHiliteMode(unsigned char) = { 0x11DF, 0x0938 }; /* MOVE.B (A7)+,0x0938 */
  15.  
  16. // * ****************************************************************************** *
  17. // * ****************************************************************************** *
  18. // Function Prototypes
  19.  
  20. WindowPtr NewSampleWindow(void);
  21. void DisposeSampleWindow(WindowPtr win);
  22. void SampleWindowEventHandler(EventRecord *theEvent, WindowPtr win);
  23.  
  24. void SetSampleWindowText(WindowPtr win, StringPtr winText);
  25. StringPtr GetSampleWindowText(WindowPtr win);
  26.  
  27. #endif  ____SAMPLE_WIN_HEADER____
  28.  
  29.